home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1994 November / Cd Ware (Nro. 2) - Epimundo.iso / DOS / ED / PCKEY.ZIP / WELCOME.SCR < prev   
Encoding:
Text File  |  1993-05-25  |  882 b   |  40 lines

  1. :welcome.scr
  2.  
  3. clear
  4. keyboard
  5. cursor 19 16
  6. print 'Welcome to my typing tutorial PcKey.
  7. cursor 0 18
  8. print 'I will try and make it easy for you to get used to the way my program works.
  9. cursor 0 20
  10. print 'I may ask you a question and give you a choice of keypresses to answer with.
  11. cursor 0 22
  12. hkey y
  13. print 'If you are with me so far press Y.
  14. :try_y_again
  15. wait -
  16. if key ! Y if key ! y goto y_not_pressed
  17. goto y_pressed
  18.  
  19. :y_not_pressed
  20. clear 24 24
  21. cursor 12 24
  22. print 'You did'nt press the Y key. Try again, press the Y key.
  23. goto try_y_again
  24.  
  25. :y_pressed
  26. clear 16
  27. cursor 22 16
  28. bkey y
  29. print 'Good, you pressed the correct key.
  30.  
  31. cursor 0 19
  32. print 'Remember, anytime that you are using PcKey, pressing the ESC key will return you
  33. cursor 15 21
  34. print 'to the previous screen; ESC is short for ESCape.
  35.  
  36. cursor 0 24
  37. print 'Press any key to continue.
  38. wait
  39.  
  40.